home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000051_ken%cs.toronto….cs.toronto.edu_Tue Oct 12 22:29:03 1993.msg < prev    next >
Internet Message Format  |  1994-10-11  |  1KB

  1. Received: from relay.cs.toronto.edu by cs.umb.edu with SMTP id AA28714
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Wed, 13 Oct 1993 07:46:48 -0400
  3. Received: by relay.cs.toronto.edu id <428501>; Wed, 13 Oct 1993 02:29:11 -0400
  4. From: Ken Lalonde <ken@cs.toronto.edu>
  5. To: tex-k@cs.umb.edu
  6. Subject: dvipsk 5.519b: 'P' option in config file has no effect
  7. Message-Id: <93Oct13.022911edt.428501@relay.cs.toronto.edu>
  8. Date:     Wed, 13 Oct 1993 02:29:03 -0400
  9.  
  10. I use a different dvips config file for our 600dpi printer,
  11. since we keep the 600dpi PK files in a separate directory.
  12. The config file contains:
  13.  
  14.     P /local/share/tex3/pk/laserjetfour:
  15.  
  16. This has no effect on dvipsk 5.519b.
  17.  
  18. Looking at the code, in resident.c, the 'P' option
  19. sets the "pkpath" variable.  This is used later
  20. in loadfont.c, line 145:
  21.  
  22.      pkfile=pksearch(pkpath, name, READBIN, fd->dpi, &name_ret, &dpi_ret);
  23.  
  24. However, the function pksearch ignores its first argument.
  25.  
  26. The PK search path seems to be set on each call to the
  27. kpathsea function `kpse_find_glyph_format'.  I don't see a hook
  28. for supplying a search path.  Perhaps the function's calling
  29. arguments should be changed.
  30.  
  31. Ken